home *** CD-ROM | disk | FTP | other *** search
- ## System-wide startup file for Octave.
- ##
- ## This file should contain any commands that should be executed each
- ## time Octave starts for every user at this site.
-
- ## System-wide startup file
- ## Octave 2.06 for OS/2
- ## (c) 1996, Klaus Gebhardt
-
- PS1 = "octave:\\#>"
-
- EDITOR = "e";
-
- if length(getenv("OCTAVE_HOME"))
- LOADPATH = sprintf("%s/scripts//", getenv("OCTAVE_HOME"));
- INFO_FILE = sprintf("%s/doc/octave", getenv("OCTAVE_HOME"));
- endif
-
- if length(file_in_path(getenv("PATH"),"less.exe"))
- PAGER = sprintf("%s -ce",file_in_path(getenv("PATH"),"less.exe"));
- else
- PAGER = "more";
- endif
-
- if length(getenv("GNUPLOT"))
- gnuplot_binary = sprintf ("%s/gnuplot.exe", getenv("GNUPLOT"));
- else
- gnuplot_binary = "gnuplot";
- endif
-
- implicit_str_to_num_ok = 1;
- ok_to_lose_imaginary_part = 1;
- ignore_function_time_stamp = 1;
-